home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / docs / help / progguide.txt < prev   
Text File  |  1996-09-02  |  3KB  |  72 lines

  1. programming guidelines, ~hints
  2. by Stefan Kost
  3. email : kost@imn.htwk-leipzig.de
  4.  
  5. I wrote this, because I sometimes see people doing things which are unneccessary
  6. or could be done better. I don't want to say that my programms (SoundFX,
  7. FractalUniverse,... are perfect. This file is for collecting nice hints & tricks.
  8. So if you have some tricks, remarks, comments,... please let me know.
  9.  
  10. --------------------------------------------------------------------------------
  11.  
  12. Don't Use Assigns !
  13. -------------------
  14.  
  15. Every programm gets automatically an assign called progdir: from system.
  16. Therwith you can acess all file from the assign. Every additional assign
  17. you made has to set everytime the user boots his amiga an slowdown the
  18. boot-process. Furthermore if you use an assignmanager, the user has to
  19. move the assign from user-startup to his assign-manger everytime he is
  20. installing something.
  21.  
  22.  
  23. Keyfiles !
  24. ----------
  25.  
  26. If your sharewareprogramm needs a keyfile, the please don't copy it to L: or S:
  27. or somewhere else. I started with SoundFX and FractalUniverse to make a drawer
  28. keyfiles in devs: and I recomend to place keyfiles there. This makes it possible
  29. to easilly backup your keyfiles.
  30. I've heard that some using a global env-variable called KEYPATH. Maybe check that
  31. too.
  32.  
  33. Prefs !
  34. -------
  35.  
  36. Everytime you boot you amiga, it has to copy all prefs from envarc: to env:.
  37. My suggestion is : Try to read prefs first from Envarc: and then from Env:
  38. If there's no prefs in Env: you already read the one from Envarc:.
  39. If all programms would do that, we don't need to copy them everytime.
  40.  
  41. An easier way is to use 'HappyEnv' which could be found on
  42. Aminet:. This programm solves all these problems descibed above.
  43.  
  44.  
  45. Avoid copying to much to system-directorys !
  46. --------------------------------------------
  47.  
  48. I advice you to create local directory from progdir: and to copy everything
  49. which is only used by your program there (shared librarys, catalogs, online-help).
  50. Another advantage is with removing the entiere drawer you remove all things
  51. installed by the program.
  52. Maybe you ask the user (expert) during installation where to put it and during
  53. program runtime you check both locations.
  54.  
  55. --------------------------------------------------------------------------------
  56.  
  57. I got inspiration, comments, ideas from (in alphabetical order) :
  58.  
  59. Andreas Mixich        humpty@TOMATE.TNG.OCHE.DE
  60. Guido Mersmann        geit@studST.FH-Muenster.DE
  61. M. Tjoelker        M.Tjoelker@mpn.cp.philips.com
  62. Matthias Andree        M_Andree@tribal.line.org
  63. Tak Tang        tst92@ecs.soton.ac.uk
  64.  
  65. That's all for now.
  66. Please support it, by sending me suggestions.
  67. We need proffesional software to survive !
  68.  
  69. Ciao Stefan
  70.  
  71.  
  72.